home *** CD-ROM | disk | FTP | other *** search
- on ayuda sMember
- global bAyuda, nIdioma
- if bAyuda then
- set the member of sprite 47 to member sMember of castLib ("mensajes" & nIdioma)
- set the visible of sprite 47 to 1
- updateStage()
- end if
- end
-
- on boton nSprite, sPrefijo, nMaxBolas, sMember
- global nContTiempo, bAyuda
- repeat while rollOver(nSprite) and not (the mouseDown)
- if nContTiempo = 0 then
- set nContTiempo to the timer
- end if
- puppetSprite(23, 1)
- set sMiembro to sPrefijo & "1"
- set the member of sprite 23 to member sMiembro of castLib "elementos graficos"
- updateStage()
- if the timer > (nContTiempo + 80) then
- set nCont to 1
- set nFactor to 1
- repeat while rollOver(nSprite) and not (the mouseDown)
- set nCont to nCont + nFactor
- if (nCont > nMaxBolas) or (nCont <= 0) then
- if nSprite = 22 then
- if nCont > nMaxBolas then
- set nCont to nMaxBolas - 1
- else
- set nCont to 2
- end if
- set nFactor to nFactor * -1
- else
- set nCont to 1
- end if
- end if
- set sMiembro to sPrefijo & nCont
- set the member of sprite 23 to member sMiembro of castLib "elementos graficos"
- updateStage()
- startTimer()
- repeat while rollOver(nSprite) and (the timer < 7)
- nothing()
- end repeat
- end repeat
- end if
- puppetSprite(23, 0)
- end repeat
- end
-
- on roll
- repeat with xx = 10 to 26
- if rollOver(xx) then
- return xx
- end if
- end repeat
- end
-
- on rollboton
- global bVideoNormal, nContTiempo
- set nContTiempo to 0
- case roll() of
- 10:
- ayuda("volumen")
- 11:
- if bVideoNormal then
- ayuda("video reducido")
- else
- ayuda("video normal")
- end if
- 12:
- ayuda("salida")
- 13:
- ayuda("panic")
- 14:
- ayuda("ayuda")
- 15:
- ayuda("modulo 8")
- boton(15, "CD2 ", 16, "modulo 8")
- 16:
- ayuda("modulo 7")
- boton(16, "CD2 ", 16, "modulo 7")
- 17:
- ayuda("modulo 6")
- boton(17, "CD2 ", 16, "modulo 6")
- 18:
- ayuda("modulo 5")
- boton(18, "CD2 ", 16, "modulo 5")
- 19:
- ayuda("modulo 4")
- boton(19, "FOTO-", 8, "modulo 4")
- 20:
- ayuda("modulo 3")
- boton(20, "Mov_UVR_1/", 9, "modulo 3")
- 21:
- ayuda("modulo 2")
- boton(21, "PASEFOTOS-", 18, "modulo 2")
- 22:
- ayuda("modulo 1")
- boton(22, "Strip ", 9, "modulo 1")
- 24:
- ayuda("1.1")
- otherwise:
- set the visible of sprite 47 to 0
- end case
- end
-